home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / echo.e < prev    next >
Text File  |  2000-03-25  |  7KB  |  252 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class ECHO
  17.    --
  18.    -- Unique Global Object in charge of ECHOing some information
  19.    -- messages during compilation for example.
  20.    -- This object is used to implement the flag "-verbose".
  21.    --
  22.    --
  23.  
  24. inherit GLOBALS;
  25.  
  26. creation make
  27.  
  28. feature
  29.  
  30.    verbose: BOOLEAN;
  31.          -- Is `echo' verbose (default is false).
  32.  
  33. feature
  34.  
  35.    make is
  36.       do
  37.       end;
  38.  
  39. feature  -- To echo some additional information (echo is only done
  40.          -- when `verbose' is true).
  41.  
  42.    put_string(msg: STRING) is
  43.       do
  44.          if verbose then
  45.             std_output.put_string(msg);
  46.             std_output.flush;
  47.          end;
  48.       end;
  49.  
  50.    put_character(c: CHARACTER) is
  51.       do
  52.          if verbose then
  53.             std_output.put_character(c);
  54.             std_output.flush;
  55.          end;
  56.       end;
  57.  
  58.    put_new_line is
  59.       do
  60.          if verbose then
  61.             std_output.put_new_line;
  62.          end;
  63.       end;
  64.  
  65.    put_integer(i: INTEGER) is
  66.       do
  67.          if verbose then
  68.             std_output.put_integer(i);
  69.             std_output.flush;
  70.          end;
  71.       end;
  72.  
  73.    put_double_format(d: DOUBLE; f: INTEGER) is
  74.       do
  75.          if verbose then
  76.             std_output.put_double_format(d,f);
  77.             std_output.flush;
  78.          end;
  79.       end;
  80.  
  81.    file_removing(path: STRING) is
  82.          -- If `path' is an existing file, echo a message on `std_output'
  83.          -- while removing the file. Otherwise, do nothing.
  84.       require
  85.          path /= Void
  86.       do
  87.          if file_exists(path) then
  88.             put_string("Removing %"");
  89.             put_string(path);
  90.             put_string(fz_b0);
  91.             remove_file(path);
  92.          end;
  93.       ensure
  94.          may_fail: true or not file_exists(path)
  95.       end;
  96.  
  97.    file_renaming(old_path, new_path: STRING) is
  98.       require
  99.          old_path /= Void;
  100.          new_path /= Void
  101.       do
  102.          put_string("Renaming %"");
  103.          put_string(old_path);
  104.          put_string("%" as %"");
  105.          put_string(new_path);
  106.          put_string(fz_b0);
  107.          rename_file(old_path,new_path);
  108.       end;
  109.  
  110.    sfw_connect(sfw: STD_FILE_WRITE; path: STRING) is
  111.       require
  112.          not sfw.is_connected;
  113.          path /= Void
  114.       do
  115.          sfw.connect_to(path);
  116.          if sfw.is_connected then
  117.             put_string("Writing %"");
  118.             put_string(path);
  119.             put_string("%" file.%N");
  120.          else
  121.             w_put_string("Cannot write file %"");
  122.             w_put_string(path);
  123.             w_put_string(fz_b0);
  124.             die_with_code(exit_failure_code);
  125.          end;
  126.       ensure
  127.          sfw.is_connected
  128.       end;
  129.  
  130.    sfr_connect(sfr: STD_FILE_READ; path: STRING) is
  131.       require
  132.          not sfr.is_connected;
  133.          path /= Void
  134.       do
  135.          put_string("Trying to read file %"");
  136.          put_string(path);
  137.          put_string(fz_b0);
  138.          sfr.connect_to(path);
  139.       end;
  140.  
  141.    sfr_connect_or_exit(sfr: STD_FILE_READ; path: STRING) is
  142.       require
  143.          not sfr.is_connected;
  144.          path /= Void
  145.       do
  146.          sfr_connect(sfr,path);
  147.          if not sfr.is_connected then
  148.             w_put_string(fz_01);
  149.             w_put_string(path);
  150.             w_put_string("%" not found.%N");
  151.             die_with_code(exit_failure_code);
  152.          end;
  153.       ensure
  154.          sfr.is_connected
  155.       end;
  156.  
  157.    read_word_in(sfr: STD_FILE_READ): STRING is
  158.       require
  159.          sfr.is_connected
  160.       do
  161.          put_string("Reading one word in %"");
  162.          put_string(sfr.path);
  163.          put_string(fz_b0);
  164.          if sfr.end_of_input then
  165.             w_put_string("Unexpected end_of_input while reading %"");
  166.             w_put_string(sfr.path);
  167.             w_put_string(fz_b0);
  168.             die_with_code(exit_failure_code);
  169.          else
  170.             sfr.read_word;
  171.             Result := sfr.last_string.twin;
  172.          end;
  173.       ensure
  174.          sfr.is_connected
  175.       end;
  176.  
  177.    call_system(cmd: STRING) is
  178.       require
  179.          cmd.count > 0
  180.       local
  181.          i: INTEGER;
  182.          cmd2: STRING;
  183.       do
  184.          if cmd.last = '%N' then
  185.             cmd.remove_last(1);
  186.             call_system(cmd);
  187.          elseif cmd.has('%N') then
  188.             i := cmd.index_of('%N');
  189.             cmd2 := cmd.substring(i + 1, cmd.count);
  190.             cmd.remove_last(cmd.count - i + 1);
  191.             call_system(cmd);
  192.             call_system(cmd2);
  193.          else
  194.             put_string("System call %"");
  195.             put_string(cmd);
  196.             put_string(fz_b0);
  197.             system(cmd);
  198.          end;
  199.       end;
  200.  
  201.    print_count(msg: STRING; count: INTEGER) is
  202.       require
  203.          count >= 0;
  204.       do
  205.          if verbose then
  206.             if count > 0 then
  207.                put_string("Total ");
  208.                put_string(msg);
  209.                if count > 1 then
  210.                   put_character('s');
  211.                end;
  212.                put_string(": ");
  213.                put_integer(count);
  214.                put_string(fz_b6);
  215.             else
  216.                put_string("No ");
  217.                put_string(msg);
  218.                put_string(fz_b6);
  219.             end;
  220.          end;
  221.       end;
  222.  
  223. feature  -- To echo some warning or some problem (echo is done whathever
  224.          -- the value of `verbose').
  225.  
  226.    w_put_string(msg: STRING) is
  227.       do
  228.          std_error.put_string(msg);
  229.          std_error.flush;
  230.       end;
  231.  
  232.    w_put_character(c: CHARACTER) is
  233.       do
  234.          std_error.put_character(c);
  235.          std_error.flush;
  236.       end;
  237.  
  238.    w_put_integer(i: INTEGER) is
  239.       do
  240.          std_error.put_integer(i);
  241.          std_error.flush;
  242.       end;
  243.  
  244. feature {COMMAND_FLAGS}
  245.  
  246.    set_verbose is
  247.       do
  248.          verbose := true;
  249.       end;
  250.  
  251. end -- ECHO
  252.